home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / HURBX.M3 < prev    next >
Text File  |  1996-04-01  |  4KB  |  149 lines

  1. name Hurco BX
  2.  
  3. % 00
  4. / 00
  5. ( 00
  6. N 5 Limit 99999
  7. G >2
  8. X ->3.>4
  9. Y ->3.>4
  10. Z ->3.>4
  11. A ->3.>4
  12. I ->3.>4
  13. J ->3.>4
  14. K ->3.>4
  15. z >3.>4 Z
  16. Q >3.>4 Z
  17. F >3.1
  18. T >2
  19. D >3.>4
  20. S >4
  21. M >2
  22. E 00
  23. e >3.>4
  24. f >3.>4
  25. s >2
  26. ) 00
  27.  
  28. ModalLetters X Y Z z F T              # List of letters that are modal    
  29.  
  30. ModalGs 0 1 2 3 17 18 19 74 75 80 81 82 83 84 85 86 87  # List of g codes that are modal    
  31.  
  32. Sequence#s N 1 1 1                    # Char, freq, incr & start          
  33. First#? N                             # Y or N  'Output 1st sequence no.  
  34. Last#? N                              # Y or N  'Output last sequence no. 
  35.  
  36. HCode X                               # X or X U  'Horizontal char.       
  37. VCode Y                               # Y or Y V  'Vertical char.         
  38. Dcode Z                               # Depth char.                       
  39. FeedCode F                            # Feed rate char.                   
  40.  
  41. Comment /( )                          # Begin End comment char.           
  42.  
  43. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  44. Coolant 8 9 7                         # On, Off & Mist m codes            
  45. DComp 41 42 40                        # Left, Right & Cancel m codes      
  46.   #LComp 43 49
  47.  
  48. Feed G1                             # Linear move                       
  49. Rapid G0                            # Rapid positioning word            
  50. Cw G2                               # Circular move clockwise           
  51. Ccw G3                              # Circular move counter clockwise   
  52.  
  53. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  54. Helical? Y
  55.  
  56. CtrCode I J K                         # I J or R or I J K L               
  57.  
  58. Spaces? Y                             # Y or N  'Spaces between words     
  59.  
  60. Incremental? N                        # Y or N  'Inc or abs output        
  61. CtrIncremental? N                     # Y or N  'Inc or abs I & J         
  62. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  63.  
  64. Inch/MM 70 71                         # Inch & Metric g codes             
  65.  
  66. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  67.  
  68. Drill 1                               # Drilling canned/manual cycle      
  69. G81 X[H] Y[V] z[D] F[FRate]
  70. X[H] Y[V]
  71. end cancel
  72.  
  73. Peck 1                                # Pecking canned/manual cycle       
  74. G83 X[H] Y[V] z[D] Q[VBite] F[FRate]
  75. X[H] Y[V]
  76. end cancel
  77.  
  78. Tap 1                                 # Tapping canned/manual cycle       
  79. G84 X[H] Y[V] z[D] F[Frate]
  80. X[H] Y[V]
  81. end cancel
  82.  
  83. Ream 1                                # Reaming canned/manual cycle       
  84. G85 X[H] Y[V] z[D] F[FRate]
  85. X[H] Y[V]
  86. end cancel
  87.  
  88. Bore 1                                # Boring canned/manual cycle        
  89. G86 X[H] Y[V] z[D] F[FRate]
  90. X[H] Y[V]
  91. end cancel
  92.  
  93. Cancel                                # Cancel a canned/manual cycle      
  94. G0 G80 Z[Rplane]
  95. end
  96.  
  97. StartCode                             # Start of the program              
  98. %0
  99. End
  100.  
  101. 1stToolChange                         # First tool change                 
  102. G0 G17 G40 G[Unitmode] G90
  103. G75 G80
  104. M25
  105. /0 (0 e[ToolDiam] f[corner] )0
  106. T[Tool] D[ToolDiam] M6
  107. S[Speed] M[Direct]
  108. G0 X[H] Y[V]
  109. Z[RPlane] M[Cool]
  110. End
  111.  
  112. Infeed                                # Enable cutter comp                
  113. G[Side] X[H] Y[V] F[FRate]
  114. end
  115.  
  116. Outfeed                               # Disable cutter comp               
  117. G1 G40 X[H] Y[V]
  118. end
  119.  
  120. ToolChange                            # Secondary tool changes            
  121. M25
  122. /0 (0 e[ToolDiam] f[corner] )0
  123. G90 X[ToolH] Y[ToolV] M[Cool]
  124. T[Tool] D[ToolDiam] M6
  125. S[Speed] M[Direct]
  126. G0 X[H] Y[V]
  127. G0 Z[RPlane] M[Cool]
  128. End
  129.  
  130. EndCode                               # End of the program                
  131. M25
  132. G90 X[ToolH] Y[ToolV] M[Cool]
  133. M2
  134. E0
  135. End
  136.  
  137. CwCode                                # CW circular move                  
  138. G2 X[H] Y[V] I[HCtr] J[VCtr] F[FRate]
  139. end
  140.  
  141. CcwCode                               # CCW circular move                 
  142. G3 X[H] Y[V] I[HCtr] J[VCtr] F[FRate]
  143. end
  144.  
  145. replace "e" with "Tool Diameter: "
  146. replace "f" with "Tool Corner: "
  147. replace " ( " with "("
  148. replace " )" with ")"
  149.